AtCoder Beginner Contest 200 B
(工事中)
解き方
解答例
下は上記の方法で解いたときの提出結果である。また、その提出の際に提出したソースコードをその下に転記する。
code: C
int main () {
long long n = 0;
int k = 0;
int added200 = 0;
int res = 0;
res = scanf("%lld", &n);
res = scanf("%d", &k);
for (int i = 0; i < k; i++) {
if (n%200==0) {
n /= 200;
} else if (added200 > 0) {
added200 = 0;
n = n*5+1;
} else {
added200 = 1;
}
}
printf("%lld", n);
if (added200 > 0) {
printf("200");
}
printf("\n");
return 0;
}
私の提出一覧
table: submissions_atcoder_begginer_contest_200_B
提出のURL 提出時刻 結果 備考
感想